设置代理
设置
git config --global https.proxy http://127.0.0.1:1087 git config --global http.proxy http://127.0.0.1:1087
查看
git config --global --get http.proxy git config --global --get https.proxy
取消代理
git config --global --unset http.proxy git config --global --unset https.proxy
生成SSH_Key
1、粘贴以下命令,替换为您的GitHub电子邮件地址
ssh-keygen -t rsa -b 4096 -C "example@example.com"
2、当提示“输入要在其中保存密钥的文件”时,按Enter。接受默认文件位置。
Enter a file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter]
3、在提示符下,键入一个安全密码。
Enter passphrase (empty for no passphrase): [Type a passphrase] Enter same passphrase again: [Type passphrase again]
最后需要将生成的 SSH Key 添加到 ssh config 中
1、编辑
vim ~/.ssh/config
2、粘贴下面到 config 文件中
Host * AddKeysToAgent yes UseKeychain yes IdentityFile ~/.ssh/id_rsa